type runtime.markBits
15 uses
runtime (current package)
mbitmap.go#L104: type markBits struct {
mbitmap.go#L111: func (s *mspan) allocBitsForIndex(allocBitIndex uintptr) markBits {
mbitmap.go#L113: return markBits{bytep, mask, allocBitIndex}
mbitmap.go#L229: func markBitsForAddr(p uintptr) markBits {
mbitmap.go#L235: func (s *mspan) markBitsForIndex(objIndex uintptr) markBits {
mbitmap.go#L237: return markBits{bytep, mask, objIndex}
mbitmap.go#L240: func (s *mspan) markBitsForBase() markBits {
mbitmap.go#L241: return markBits{&s.gcmarkBits.x, uint8(1), 0}
mbitmap.go#L245: func (m markBits) isMarked() bool {
mbitmap.go#L250: func (m markBits) setMarked() {
mbitmap.go#L258: func (m markBits) setMarkedNonAtomic() {
mbitmap.go#L263: func (m markBits) clearMarked() {
mbitmap.go#L271: func markBitsForSpan(base uintptr) (mbits markBits) {
mbitmap.go#L280: func (m *markBits) advance() {
mcheckmark.go#L75: func setCheckmark(obj, base, off uintptr, mbits markBits) bool {
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |